func net/http.http2streamError
24 uses
net/http (current package)
h2_bundle.go#L1240: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
h2_bundle.go#L2293: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L2379: return nil, http2streamError(fh.StreamID, http2ErrCodeProtocol)
h2_bundle.go#L4946: sc.resetStream(http2streamError(st.id, http2ErrCodeNo))
h2_bundle.go#L5213: return sc.countError("bad_flow", http2streamError(f.StreamID, http2ErrCodeFlowControl))
h2_bundle.go#L5238: sc.closeStream(st, http2streamError(f.StreamID, f.ErrCode))
h2_bundle.go#L5411: return sc.countError("data_flow", http2streamError(id, http2ErrCodeFlowControl))
h2_bundle.go#L5424: return sc.countError("closed", http2streamError(id, http2ErrCodeStreamClosed))
h2_bundle.go#L5436: return sc.countError("send_too_much", http2streamError(id, http2ErrCodeProtocol))
h2_bundle.go#L5441: return sc.countError("flow_on_data_length", http2streamError(id, http2ErrCodeFlowControl))
h2_bundle.go#L5449: return sc.countError("body_write_err", http2streamError(id, http2ErrCodeStreamClosed))
h2_bundle.go#L5519: st.sc.writeFrameFromHandler(http2FrameWriteRequest{write: http2streamError(st.id, http2ErrCodeInternal)})
h2_bundle.go#L5552: return sc.countError("headers_half_closed", http2streamError(id, http2ErrCodeStreamClosed))
h2_bundle.go#L5580: return sc.countError("over_max_streams", http2streamError(id, http2ErrCodeProtocol))
h2_bundle.go#L5587: return sc.countError("over_max_streams_race", http2streamError(id, http2ErrCodeRefusedStream))
h2_bundle.go#L5645: return sc.countError("trailers_not_ended", http2streamError(st.id, http2ErrCodeProtocol))
h2_bundle.go#L5649: return sc.countError("trailers_pseudo", http2streamError(st.id, http2ErrCodeProtocol))
h2_bundle.go#L5658: return sc.countError("trailers_bogus", http2streamError(st.id, http2ErrCodeProtocol))
h2_bundle.go#L5673: return sc.countError("priority", http2streamError(streamID, http2ErrCodeProtocol))
h2_bundle.go#L5739: return nil, nil, sc.countError("bad_connect", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L5752: return nil, nil, sc.countError("bad_path_method", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L5758: return nil, nil, sc.countError("head_body", http2streamError(f.StreamID, http2ErrCodeProtocol))
h2_bundle.go#L5841: return nil, nil, sc.countError("bad_path", http2streamError(st.id, http2ErrCodeProtocol))
h2_bundle.go#L9474: serr := http2streamError(cs.ID, f.ErrCode)